home *** CD-ROM | disk | FTP | other *** search
/ Kodak Picture CD: 357069 / Kodak Picture CD 357069.iso / startmac.dmg / Uninstall Software.app / Contents / Frameworks / Configure.framework / PrivateHeaders / EasySharePrefsManager.h next >
Text File  |  2004-09-23  |  907b  |  34 lines

  1. //
  2. //  EasySharePrefsManager.h
  3. //  Configure
  4. //
  5. //  Created by Stan Pulchtopek on Fri Feb 15 2002.
  6. //  Copyright (c) 2002 Eastman Kodak Company. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11.  
  12. @interface EasySharePrefsManager : NSObject {
  13.     NSString *_EasyShareBundleIdentifier;
  14.     NSString *_user;
  15.     NSString *_installationPath;
  16.     NSString *_savedHotPlugPath;
  17.     NSString *_savedPCDHotPlugPath;
  18.     BOOL    _bAskHotPlugAction;
  19. }
  20.  
  21. - (id)initWithUser:(NSString *)user;
  22. - (NSString *)getSavedHotPlugActionPath;
  23. - (NSString *)getSavedPCDHotPlugActionPath;
  24. - (BOOL)getAskHotPlugAction;
  25. - (void)setAskHotPlugAction:(BOOL)bAskHotPlugAction;
  26. - (BOOL)commitChanges;
  27. - (void)removeAllPreferences;
  28. - (void)setInstallationPath:(NSString *)installationPath;
  29. - (void)setSavedHotPlugActionPath:(NSString *)hotPlugActionPath;
  30. - (void)setSavedPCDHotPlugActionPath:(NSString *)pcdHotPlugActionPath;
  31.  
  32.  
  33. @end
  34.